Looking into the Received Data 查看收到的数据

    Looking into the Received Data 查看收到的数据 - 图2

    我们已经知道 channelRead() 方法是在数据被接收的时候调用。让我们放一些代码到 DiscardServerHandler 类的 channelRead() 方法。

    1.这个低效的循环事实上可以简化为:System.out.println(in.toString(io.netty.util.CharsetUtil.US_ASCII))

    如果你再次运行 telnet 命令,你将会看到服务端打印出了他所接收到的消息。

    译者注:翻译版本的项目源码见 https://github.com/waylau/netty-4-user-guide-demos 中的com.waylau.netty.demo.discard 包下